.level ul,
.levels {
  list-style: none;
  padding: 0;
  margin: 0;
}

.level h3 {
  font-size: 1.8em;
  text-align: center;
}


.level h3 {
  margin: 0;
}
.level {
  border: 2px solid #ccc;
  border-radius: 8px;
  margin: 10px 0;
  overflow: hidden;
}

.level.open .dropdown-title {
  background-color: #ddd;
}

.level.open .dropdown-content {
  max-height: 1000px;
  border-radius: 0 0 8px 8px;
}


.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.dropdown-title {
  cursor: pointer;
  margin: 0;
  padding: 10px;
  background-color: #f0f0f0;
  border-bottom: 1px solid #ccc;
  border-radius: 8px 8px 0 0;
  user-select: none;
}


.mission-btn {
  display: block;
  width: 90%;
  max-width: 800px;
  margin: 10px auto;
  padding: 15px;
  font-size: 25px;
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s, font-size 0.3s;
}
.dropdown-title{
  font-size: 1.8em;
  text-align: center;
}

.dropdown-content {
  background-color: #f9f9f9;
}
.mission-btn:hover {
  transform: scale(1.05);
  background-color: #ff0;
  font-size: 27px;
}
.mission-btn:disabled {
  background-color: #d3d3d3;
  border-color: gray;
  cursor: not-allowed;
}

#Bonus\ Missions,
#Story\ Missions,
#Street\ Races {
  text-align: center;
  width: 90%;
  margin: auto;
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 80%;
  margin: auto 10%;
  border: none;
  outline: 0;
  font-size: 15px;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.accordion:hover,
.active {
  background-color: #ccc;
}


.accordion::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 25px;
  margin-left: auto;
  transition: transform 0.4s;
}
.accordion.active::after {
  content: "\f077";
  transform: rotate(180deg);
}